home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / des_c.exe / lha / GETOPT.C < prev    next >
Text File  |  1990-07-14  |  2KB  |  63 lines

  1. #ifdef __TURBOC__
  2.  
  3.  
  4. 1.    copy \tc\examples\getopt.c to this spot
  5. 2.    edit the SW declaration on line 18 to remove the word 'static'
  6.  
  7.  
  8. #else
  9. /* got this off net.sources */
  10.  
  11. #include <stdio.h>
  12.  
  13. /*
  14.  * get option letter from argument vector
  15.  */
  16. int    opterr = 1,        /* useless, never set or used */
  17.     optind = 1,        /* index into parent argv vector */
  18.     optopt;            /* character checked for validity */
  19. char    *optarg;        /* argument associated with option */
  20.  
  21. #define BADCH    (int)'?'
  22. #define EMSG    ""
  23. #define tell(s)    fputs(*nargv,stderr);fputs(s,stderr); \
  24.         fputc(optopt,stderr);fputc('\n',stderr);return(BADCH);
  25.  
  26. getopt(nargc,nargv,ostr)
  27. int    nargc;
  28. char    **nargv,
  29.     *ostr;
  30. {
  31.     static char    *place = EMSG;    /* option letter processing */
  32.     register char    *oli;        /* option letter list index */
  33.     char    *index();
  34.  
  35.     if(!*place) {            /* update scanning pointer */
  36.         if(optind >= nargc || *(place = nargv[optind]) != '-' || !*++place) return(EOF);
  37.         if (*place == '-') {    /* found "--" */
  38.             ++optind;
  39.             return(EOF);
  40.         }
  41.     }                /* option letter okay? */
  42.     if ((optopt = (int)*place++) == (int)':' || !(oli = index(ostr,optopt))) {
  43.         if(!*place) ++optind;
  44.         tell(": illegal option -- ");
  45.     }
  46.     if (*++oli != ':') {        /* don't need argument */
  47.         optarg = NULL;
  48.         if (!*place) ++optind;
  49.     }
  50.     else {                /* need an argument */
  51.         if (*place) optarg = place;    /* no white space */
  52.         else if (nargc <= ++optind) {    /* no arg */
  53.             place = EMSG;
  54.             tell(": option requires an argument -- ");
  55.         }
  56.          else optarg = nargv[optind];    /* white space */
  57.         place = EMSG;
  58.         ++optind;
  59.     }
  60.     return(optopt);            /* dump back option letter */
  61. }
  62. #endif
  63.